home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / NewsTicker.sit / NewsTicker / source code / WindowStuff / jGNELib.h < prev    next >
Text File  |  1997-06-19  |  633b  |  24 lines

  1. /*------------------------------------------------------------------------------
  2. #
  3. #    jGNE Hookup Code Resource Library
  4. #
  5. #    jGNELib.h    - Header for library for using the jgne code resource
  6. #
  7. #    Copyright © CE Software, Inc., Inc. 1996-97
  8. #    All rights reserved.
  9. #
  10. ------------------------------------------------------------------------------*/
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. typedef pascal Boolean (*jEventProcPtr)(EventRecord* event, long refcon);
  16.  
  17. void    InitjGNEProcLib(void);    //This loads the resource into memory if necessary
  18. void    HookjGNE(long thejGNEProc, long    refcon);
  19. void    UnHookjGNE(void);
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.